home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / osi / isode / vmsisode / vmsisode80_tar.Z / vmsisode80_tar / sockit / gccinclude / sys / ttychars.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-07-30  |  611 b   |  33 lines

  1. struct ttychars {
  2.   char tc_erase;
  3.   char tc_kill;
  4.   char tc_intrc;
  5.   char tc_quitc;
  6.   char tc_startc;
  7.   char tc_stopc;
  8.   char tc_eofc;
  9.   char tc_brkc;
  10.   char tc_suspc;
  11.   char tc_dsuspc;
  12.   char tc_rprntc;
  13.   char tc_flushc;
  14.   char tc_werasec;
  15.   char tc_lnextc;
  16. };
  17. #define CTRL(c) ('c'&037)
  18. #define CERASE 0177
  19. #define CKILL CTRL(u)
  20. #define CINTR CTRL(c)
  21. #define CQUIT 034
  22. #define CSTART CTRL(q)
  23. #define CSTOP CTRL(s)
  24. #define CEOF CTRL(d)
  25. #define CEOT CEOF
  26. #define CBRK 0377
  27. #define CSUSP CTRL(z)
  28. #define CDSUSP CTRL(y)
  29. #define CRPRNT CTRL(r)
  30. #define CFLUSH CTRL(o)
  31. #define CWERASE CTRL(w)
  32. #define CLNEXT CTRL(v)
  33.